crypto/tls.clientHandshakeState.serverHello (field)
20 uses
crypto/tls (current package)
handshake_client.go#L33: serverHello *serverHelloMsg
handshake_client.go#L372: serverHello: serverHello,
handshake_client.go#L560: if err := transcriptMsg(hs.serverHello, &hs.finishedHash); err != nil {
handshake_client.go#L617: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random)
handshake_client.go#L624: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client.go#L665: if !hs.serverHello.ocspStapling {
handshake_client.go#L705: err = keyAgreement.processServerKeyExchange(c.config, hs.hello, hs.serverHello, c.peerCertificates[0], skx)
handshake_client.go#L766: if hs.serverHello.extendedMasterSecret {
handshake_client.go#L772: hs.hello.random, hs.serverHello.random)
handshake_client.go#L835: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
handshake_client.go#L857: bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
handshake_client.go#L867: if hs.serverHello.compressionMethod != compressionNone {
handshake_client.go#L872: if c.handshakes == 0 && hs.serverHello.secureRenegotiationSupported {
handshake_client.go#L874: if len(hs.serverHello.secureRenegotiation) != 0 {
handshake_client.go#L884: if !bytes.Equal(hs.serverHello.secureRenegotiation, expectedSecureRenegotiation[:]) {
handshake_client.go#L890: if err := checkALPN(hs.hello.alpnProtocols, hs.serverHello.alpnProtocol, false); err != nil {
handshake_client.go#L894: c.clientProtocol = hs.serverHello.alpnProtocol
handshake_client.go#L896: c.scts = hs.serverHello.scts
handshake_client.go#L913: if hs.session.extMasterSecret != hs.serverHello.extendedMasterSecret {
handshake_client.go#L991: if !hs.serverHello.ticketSupported {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |